home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
51741
/
51741.xpi
/
chrome
/
content
/
lib
/
browser.js
next >
Wrap
Text File
|
2010-02-01
|
459b
|
22 lines
(function()
{
//returns the application name
this.getApplicationName = function ()
{
var appInfo=Components.classes["@mozilla.org/xre/app-info;1"].
getService(Components.interfaces.nsIXULAppInfo);
return appInfo.name
}
//returns true if the Application is SeaMonkey
this.isSeaMonkey = function()
{
if(this.getApplicationName() == 'SeaMonkey')
return true;
else
return false;
}
return null;
}).apply(metaTitleDescriptionOnTop);